ItemFormatter Property (ChartSeriesBase<T>)
In This Topic
Gets or sets the itemFormatter client-side function name for specific series
Syntax
'Declaration
<JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)>
Public Property ItemFormatter As System.String
'Usage
Dim instance As ChartSeriesBase(Of T)
Dim value As System.String
instance.ItemFormatter = value
value = instance.ItemFormatter
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public System.string ItemFormatter {get; set;}
public read-write property ItemFormatter: System.String;
JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)
public function get,set ItemFormatter : System.String
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public: __property System.string* get_ItemFormatter();
public: __property void set_ItemFormatter(
System.string* value
);
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public:
property System.String^ ItemFormatter {
System.String^ get();
void set ( System.String^ value);
}
See Also